/* =====================================================
COMPONENT STYLES: Buttons, Cards, Modals, Forms
Extracted from catalog.html for Phase 3.2
===================================================== */

/* =====================================================
MODALS - STRIPE ULTRACLEAN STYLE
===================================================== */
/* General modal pattern with hidden class */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
}

.modal:not(.hidden) {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background: var(--glass-bg, #FFFFFF);
    backdrop-filter: var(--glass-blur, blur(10px));
    -webkit-backdrop-filter: var(--glass-blur, blur(10px));
    border-radius: var(--radius-xl, 16px);
    border: 1px solid var(--glass-border, rgba(0, 0, 0, 0.1));
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: modalFadeIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.1));
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary, #000000);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    color: var(--text-secondary, #666666);
    border-radius: var(--radius-md, 8px);
    transition: all 0.2s;
    font-size: 24px;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--surface, rgba(0, 0, 0, 0.05));
    color: var(--text-primary, #000000);
}

.modal-body {
    padding: var(--space-6);
}

#termsModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

#termsModal.open {
    display: block;
}

.terms-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.terms-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
            /* Glassmorphism effect */
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.terms-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--border);
}

.terms-modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.terms-modal-close {
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all 0.2s var(--ease-stripe);
}

.terms-modal-close:hover {
    background: var(--surface);
    color: var(--text-primary);
}

.terms-modal-close svg {
    width: 20px;
    height: 20px;
}

.terms-modal-body {
    padding: var(--space-6);
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

.terms-modal-body p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

/* =====================================================
PRE-ORDERS DISCLAIMER MODAL
===================================================== */
#preOrdersDisclaimerModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
}

#preOrdersDisclaimerModal.open {
    display: block;
}

.beta-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.beta-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.beta-modal-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.beta-modal-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-2);
    background: linear-gradient(135deg, rgba(255, 180, 60, 0.95) 0%, rgba(255, 200, 100, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Update Modal - Teal heading */
#navigationUpdateModal .beta-modal-header h2 {
    background: linear-gradient(135deg, var(--brand-teal) 0%, #4BA8A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beta-modal-body {
    padding: var(--space-6);
    text-align: center;
}

.beta-modal-body p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    font-size: 15px;
}

.beta-modal-body .beta-highlight {
    font-weight: 600;
    color: var(--brand-teal);
}

.beta-modal-body .beta-note {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
}

.beta-modal-footer {
    padding: var(--space-4) var(--space-6) var(--space-6);
    display: flex;
    justify-content: center;
}

.beta-modal-button {
    background: linear-gradient(135deg, rgba(255, 180, 60, 0.95) 0%, rgba(255, 200, 100, 0.95) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-8);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--ease-stripe);
    box-shadow: 0 4px 12px rgba(255, 180, 60, 0.3);
}

.beta-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 180, 60, 0.4);
}

.beta-modal-button:active {
    transform: translateY(0);
}

/* =====================================================
NAVIGATION UPDATE DISCLAIMER MODAL
===================================================== */
#navigationUpdateModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 201;
}

#navigationUpdateModal.open {
    display: block;
}

/* =====================================================
CART TUTORIAL MODAL
===================================================== */
#cartTutorialModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

#cartTutorialModal.open {
    display: block;
}

.cart-tutorial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cart-tutorial-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.cart-tutorial-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.cart-tutorial-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-2);
}

.cart-tutorial-body {
    padding: var(--space-6);
}

.cart-tutorial-step {
    margin-bottom: var(--space-6);
}

.cart-tutorial-step:last-child {
    margin-bottom: 0;
}

.cart-tutorial-step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.cart-tutorial-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(255, 180, 60, 0.95) 0%, rgba(255, 200, 100, 0.95) 100%);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
}

.cart-tutorial-step-content {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-left: calc(28px + var(--space-2));
}

.cart-tutorial-share-options {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
}

.cart-tutorial-share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.cart-tutorial-share-option svg {
    width: 32px;
    height: 32px;
    color: var(--brand-teal);
}

.cart-tutorial-share-option span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.cart-tutorial-footer {
    padding: var(--space-4) var(--space-6) var(--space-6);
    display: flex;
    justify-content: center;
}

.cart-tutorial-button {
    background: linear-gradient(135deg, rgba(255, 180, 60, 0.95) 0%, rgba(255, 200, 100, 0.95) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-8);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--ease-stripe);
    box-shadow: 0 4px 12px rgba(255, 180, 60, 0.3);
}

.cart-tutorial-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 180, 60, 0.4);
}

.cart-tutorial-button:active {
    transform: translateY(0);
}

/* =====================================================
STORE NAME MODAL - Material Design Professional UI
Following Apple HIG, Material Design, and Fluent UI principles
===================================================== */
.store-name-modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-name-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.store-name-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.store-name-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    background: #FFFFFF;
    border-radius: 16px; /* Material Design 3 rounded corners */
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15),
                0 8px 16px rgba(0, 0, 0, 0.1);
    animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
from {
    opacity: 0;
        transform: translate(-50%, -48%) scale(0.96);
}
to {
    opacity: 1;
        transform: translate(-50%, -50%) scale(1);
}
}

.store-name-modal-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.store-name-modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.store-name-modal-close {
    background: transparent;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

.store-name-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.store-name-modal-close:active {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
}

.store-name-modal-close svg {
    width: 20px;
    height: 20px;
}

.store-name-modal-body {
    padding: var(--space-6);
}

.store-name-input-wrapper {
    position: relative;
    margin-bottom: var(--space-2);
}

.store-name-input {
    width: 100%;
    padding: var(--space-4) var(--space-4);
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px; /* Material Design 3 input radius */
    font-size: 16px;
    font-weight: 400;
    background: #FFFFFF;
    color: var(--text-primary);
    font-family: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.store-name-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.store-name-input:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.store-name-input:focus {
    outline: none;
    border-color: #489292; /* Teal matching brand */
    box-shadow: 0 0 0 4px rgba(248, 131, 121, 0.12); /* Material Design focus ring */
    background: #FFFFFF;
}

.store-name-input:focus-visible {
    outline: none;
}

.store-name-modal-footer {
    padding: var(--space-4) var(--space-6) var(--space-6);
    display: flex;
    gap: var(--space-3);
    justify-content: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.store-name-modal-button {
    padding: var(--space-4) var(--space-6);
    border-radius: 12px; /* Matching button radius */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px; /* Material Design touch target */
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.01em;
}

.store-name-modal-button-cancel {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.store-name-modal-button-cancel:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}

.store-name-modal-button-cancel:active {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(0.98);
}

.store-name-modal-button-continue {
    background: #489292; /* Teal matching brand */
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(248, 131, 121, 0.25),
                0 1px 2px rgba(248, 131, 121, 0.15);
}

.store-name-modal-button-continue:hover {
    background: #F66D5E; /* Darker coral on hover */
    box-shadow: 0 4px 12px rgba(248, 131, 121, 0.35),
                0 2px 4px rgba(248, 131, 121, 0.2);
    transform: translateY(-1px);
}

.store-name-modal-button-continue:active {
    background: #e6756a;
    transform: translateY(0) scale(0.98);
    box-shadow: 0 1px 4px rgba(248, 131, 121, 0.3);
}

.store-name-modal-button-continue:disabled {
    background: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.38);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* =====================================================
SHARE OPTIONS MODAL - Material Design Professional UI
Following Apple HIG, Material Design, and Fluent UI principles
===================================================== */
.share-options-modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-options-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.share-options-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.share-options-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    background: #FFFFFF;
    border-radius: 16px; /* Material Design 3 rounded corners */
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15),
                0 8px 16px rgba(0, 0, 0, 0.1);
    animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-options-modal-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.share-options-modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.share-options-modal-close {
    background: transparent;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

.share-options-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.share-options-modal-close:active {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
}

.share-options-modal-close svg {
    width: 20px;
    height: 20px;
}

.share-options-modal-body {
    padding: var(--space-6);
}

.share-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    padding: var(--space-2) 0;
}

/* Professional Share Option Buttons - Material Design */
.share-option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-4);
    border-radius: 12px; /* Material Design 3 radius */
    border: 2px solid rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 120px; /* Material Design touch target */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08),
                0 1px 2px rgba(0, 0, 0, 0.04);
}

.share-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12),
                0 2px 4px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.share-option-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.share-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-option-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.share-option-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SMS Option - Brand Teal */
.share-option-btn.sms-option .share-option-icon {
    background: rgba(70, 146, 145, 0.1);
    color: #469291;
}

.share-option-btn.sms-option .share-option-icon svg {
    color: #469291;
}

.share-option-btn.sms-option .share-option-label {
    color: #469291;
}

.share-option-btn.sms-option:hover {
    border-color: #469291;
    background: rgba(70, 146, 145, 0.04);
}

.share-option-btn.sms-option:hover .share-option-icon {
    background: rgba(70, 146, 145, 0.15);
    transform: scale(1.05);
}

/* WhatsApp Option - WhatsApp Green */
.share-option-btn.whatsapp-option .share-option-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.share-option-btn.whatsapp-option .share-option-icon svg {
    color: #25D366;
}

.share-option-btn.whatsapp-option .share-option-label {
    color: #25D366;
}

.share-option-btn.whatsapp-option:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.04);
}

.share-option-btn.whatsapp-option:hover .share-option-icon {
    background: rgba(37, 211, 102, 0.15);
    transform: scale(1.05);
}

/* Copy/Clipboard Option - Neutral Gray */
.share-option-btn.clipboard-option .share-option-icon {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.share-option-btn.clipboard-option .share-option-icon svg {
    color: #6b7280;
}

.share-option-btn.clipboard-option .share-option-label {
    color: #6b7280;
}

.share-option-btn.clipboard-option:hover {
    border-color: #6b7280;
    background: rgba(107, 114, 128, 0.04);
}

.share-option-btn.clipboard-option:hover .share-option-icon {
    background: rgba(107, 114, 128, 0.15);
    transform: scale(1.05);
}

/* =====================================================
SHARE LIST MODAL
===================================================== */
#shareListModal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20001;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#shareListModal.open {
    opacity: 1;
    visibility: visible;
}

.share-list-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.share-list-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: modalFadeIn 0.3s ease;
}

.share-list-modal-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.share-list-modal-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.share-list-modal-body {
    padding: var(--space-6);
}

.share-list-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.share-list-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--brand-teal);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s var(--ease-stripe);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.share-list-button:hover {
    background: #3a7a78;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 146, 145, 0.3);
}

.share-list-button svg {
    width: 24px;
    height: 24px;
}

.share-list-button span {
    font-size: 13px;
    font-weight: 500;
}

.share-list-modal-footer {
    padding: var(--space-4) var(--space-6) var(--space-6);
    display: flex;
    justify-content: center;
}

.share-list-modal-button-close {
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--ease-stripe);
    border: none;
    background: var(--surface);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.share-list-modal-button-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* =====================================================
PROFESSIONAL NOTIFICATION BANNER SYSTEM
===================================================== */
.notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    max-width: 90%;
    width: 100%;
    max-width: 500px;
}

.notification-banner {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 500px;
    pointer-events: auto;
    animation: slideDown 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slideDown {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.notification-banner.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
to {
    opacity: 0;
    transform: translateY(-20px);
}
}

.notification-banner.success {
    border-left: 4px solid #10b981;
}

.notification-banner.error {
    border-left: 4px solid #ef4444;
}

.notification-banner.warning {
    border-left: 4px solid #f59e0b;
}

.notification-banner.info {
    border-left: 4px solid var(--brand-teal);
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin: 0;
}

.notification-message {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.notification-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

/* =====================================================
PROFESSIONAL CONFIRMATION DIALOG MODAL
===================================================== */
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    align-items: center;
    justify-content: center;
}

.confirmation-modal.open {
    display: flex;
}

.confirmation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.confirmation-modal-content {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    animation: modalSlideUp 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideUp {
from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}
to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}

.confirmation-modal-header {
    padding: 24px 24px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
}

.confirmation-icon {
    width: 28px;
    height: 28px;
    color: var(--brand-teal);
    flex-shrink: 0;
}

.confirmation-modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.confirmation-modal-body {
    padding: 20px 24px;
    background: #FFFFFF;
}

.confirmation-modal-body p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.confirmation-modal-footer {
    padding: 16px 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    background: #FFFFFF;
}

.confirmation-btn {
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.confirmation-btn-cancel {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.confirmation-btn-cancel:hover {
    background: rgba(0, 0, 0, 0.1);
}

.confirmation-btn-confirm {
    background: var(--brand-teal);
    color: white;
}

.confirmation-btn-confirm:hover {
    background: #3a7a7a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(70, 146, 145, 0.3);
}

/* =====================================================
ORDER LIST DRAWER - STRIPE ULTRACLEAN STYLE
===================================================== */
.cart-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.cart-drawer.open,
.cart-drawer:not(.hidden) {
    display: block;
}

.cart-drawer.hidden {
    display: none;
}

.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s var(--ease-stripe);
    z-index: 10000; /* Above overlay */
}

@keyframes slideInRight {
from {
    transform: translateX(100%);
}
to {
    transform: translateX(0);
}
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--border);
}

.cart-drawer-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cart-drawer-close {
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all 0.2s var(--ease-stripe);
}

.cart-drawer-close:hover {
    background: var(--surface);
    color: var(--text-primary);
}

.cart-drawer-close svg {
    width: 20px;
    height: 20px;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-4);
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-4);
    text-align: center;
    color: var(--text-secondary);
}

.cart-empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    opacity: 0.5;
}

.cart-empty-state p {
    margin: var(--space-2) 0;
    font-size: 16px;
    font-weight: 500;
}

.cart-empty-subtext {
    font-size: 14px;
    opacity: 0.7;
}

.cart-items-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.cart-item-group {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid var(--border);
}

.cart-item-brand {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-teal);
    margin-bottom: var(--space-3);
}

.cart-item-type {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.cart-item-section {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
}

.cart-item-flavor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-flavor:last-child {
    border-bottom: none;
}

.cart-item-flavor-name {
    font-size: 14px;
    color: var(--text-primary);
    flex: 1;
}

.cart-item-quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.cart-quantity-btn {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.2s var(--ease-stripe);
    font-size: 18px;
    font-weight: 500;
}

.cart-quantity-btn:hover {
    background: var(--surface);
    border-color: var(--brand-teal);
    color: var(--brand-teal);
}

.cart-quantity-input {
    width: 50px;
    padding: var(--space-1) var(--space-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 14px;
    background: var(--card);
    color: var(--text-primary);
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all 0.2s var(--ease-stripe);
}

.cart-remove-btn:hover {
    background: rgba(239, 68, 68, 0.1);
}

.cart-drawer-footer {
    border-top: 1px solid var(--border);
    padding: var(--space-4);
    background: var(--card);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.cart-action-btn {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s var(--ease-stripe);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.cart-clear-btn {
    background: var(--surface);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.cart-send-btn {
    background: var(--brand-teal);
    color: white;
}

.cart-send-btn:hover {
    background: #3a7a78;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(70, 146, 145, 0.3);
}

.cart-clear-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: #ef4444;
}

.cart-share-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
}

/* Cart share button base styles - overridden by specific variants in catalog.css */
.cart-share-btn {
    background: var(--brand-teal);
    color: white;
    flex-direction: row; /* Changed from column to row for better layout */
    gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
                0 1px 2px rgba(0, 0, 0, 0.06);
}

.cart-share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
                0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-share-btn svg {
    width: 20px;
    height: 20px;
}

.cart-share-btn span {
    font-size: 12px;
}

/* Cart Tab Container Styles */
/* Cart Tab - No container box, flush with page */
.cart-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-tab-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cart-tab-content {
    width: 100%;
}

.cart-tab-body {
    padding: var(--space-4);
    min-height: 400px;
}

.cart-tab-footer {
    padding: var(--space-4);
    border-top: 1px solid var(--border);
    margin-top: var(--space-4);
}

.cart-section-header {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--space-4) var(--space-4) var(--space-2);
    margin-top: var(--space-4);
    display: flex;
    align-items: center;
}

.cart-section-header:first-child {
    margin-top: 0;
}

.cart-section-divider {
    height: 1px;
    background: var(--border);
    margin: var(--space-4) 0;
}

@media (max-width: 480px) {
.cart-drawer-content {
    max-width: 100%;
}
}

/* Intro image overlay with smooth fade effects */
#introVideoOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 100;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    align-items: center;
    justify-content: center;
}

#introVideoOverlay.hidden {
    display: none !important;
    opacity: 0;
}

#introVideoOverlay.fading {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

#introVideoOverlay.fading-in {
    opacity: 1;
    transition: opacity 1.5s ease-in;
}

#introVideoOverlay video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    animation: fadeInVideo 2s ease-in forwards;
}

@keyframes fadeInVideo {
0% {
    opacity: 0;
    transform: scale(0.95);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}

#introVideoOverlay.fading video {
    animation: fadeOutVideo 1.5s ease-out forwards;
}

@keyframes fadeOutVideo {
0% {
    opacity: 1;
    transform: scale(1);
}
100% {
    opacity: 0;
    transform: scale(0.95);
}
}

/* =====================================================
LOADING SPINNER - STRIPE ULTRACLEAN STYLE
===================================================== */
.loading-spinner {
    border: 3px solid var(--surface);
    border-top: 3px solid var(--brand-teal);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/* =====================================================
CATEGORIES FAB AND FLOATING POPUP MENU - STRIPE ULTRACLEAN STYLE
===================================================== */
.categories-fab {
    position: fixed;
    bottom: 120px;
    right: var(--space-6);
    z-index: 40;
    width: 48px;
    height: 48px;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 180, 60, 0.95) 0%, rgba(255, 200, 100, 0.95) 50%, rgba(255, 220, 140, 0.95) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 180, 60, 0.35), 0 2px 4px rgba(255, 200, 100, 0.25);
    transition: all 0.2s var(--ease-stripe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-fab:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 180, 60, 0.45), 0 4px 8px rgba(255, 200, 100, 0.35);
}

.categories-fab:active {
    transform: translateY(0) scale(0.95);
}

.categories-fab svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

/* Floating Popup Menu */
.categories-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 9998;
    pointer-events: auto;
}

.categories-popup-overlay.active {
    display: block;
}

.categories-popup {
    display: none;
    position: fixed;
    bottom: 160px;
    right: var(--space-6);
    z-index: 9999;
    min-width: 200px;
    max-width: 280px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow-dark);
    padding: var(--space-3);
    animation: popupFadeIn 0.2s var(--ease-stripe);
    pointer-events: auto;
    isolation: isolate;
}

.categories-popup.open {
    display: block;
}

@keyframes popupFadeIn {
from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
}
to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}

.categories-popup-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    pointer-events: auto;
    position: relative;
    z-index: 10000;
}

.category-popup-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s var(--ease-stripe);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: auto;
    position: relative;
    z-index: 10000;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.category-popup-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.category-popup-item.active {
    background: linear-gradient(135deg, rgba(255, 180, 60, 0.95) 0%, rgba(255, 200, 100, 0.95) 100%);
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(255, 180, 60, 0.3);
}

.category-popup-item span {
    display: block;
}

/* =====================================================
BROADCAST FEED LAYOUT - MODERN SOCIAL FEED STYLE
===================================================== */
#updates-tab {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF5E8 25%, #F0F9F5 75%, #E8F5F2 100%);
    min-height: calc(100vh - 80px);
    margin: 0 calc(-1 * var(--space-4)) calc(-1 * var(--space-12));
    padding: var(--space-6) var(--space-4) var(--space-20);
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

/* When body/main have gradient, make tab background transparent to avoid double gradient */
body.broadcast-tab-active #updates-tab {
    background: transparent;
}

/* =====================================================
BROADCAST CONTAINER
Simple old lace background color (#fff6e9) for broadcast section
===================================================== */
.broadcasts-container {
    background: #fff6e9; /* Old lace color - simple and clean */
    min-height: calc(100vh - 200px);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: var(--space-8) var(--space-4) calc(var(--space-12) + 68px + env(safe-area-inset-bottom, 0px));
    z-index: 1;
    transition: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* CRITICAL: Override any hidden states when broadcast tab is active */
body.broadcast-tab-active #broadcastsContainer,
body.broadcast-tab-active .broadcasts-container,
.broadcast-tab-active #broadcastsContainer,
.broadcast-tab-active .broadcasts-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: calc(100vh - 200px) !important;
}

/* CRITICAL: Ensure broadcasts container is never hidden when broadcast tab is active */
#broadcastsContainer:not(.hidden) {
    display: block !important;
}

/* =====================================================
CHRISTMAS THEME - BROADCAST TAB ONLY (Until Jan 1)
===================================================== */
/* Dark background for Broadcast tab during Christmas */
body.broadcast-tab-active.christmas-mode {
    background: linear-gradient(135deg, #0a0a0c 0%, #1a1a2e 25%, #16213e 75%, #0f3460 100%) !important;
    background-attachment: fixed;
}

main.broadcast-tab-active.christmas-mode {
    background: linear-gradient(135deg, #0a0a0c 0%, #1a1a2e 25%, #16213e 75%, #0f3460 100%) !important;
    background-attachment: fixed;
}

body.broadcast-tab-active.christmas-mode #updates-tab {
    background: transparent;
}

/* Snow container - positioned absolutely over Broadcast tab */
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    display: none;
}

body.broadcast-tab-active.christmas-mode #snow-container {
    display: block;
}

/* Snowflake styling */
.snowflake {
    position: absolute;
    color: #ffffff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
to {
    transform: translateY(100vh) rotate(360deg);
}
}

/* Different sizes and speeds for snowflakes */
.snowflake:nth-child(1) { font-size: 0.8em; animation-duration: 10s; left: 10%; }
.snowflake:nth-child(2) { font-size: 1em; animation-duration: 12s; left: 20%; animation-delay: -2s; }
.snowflake:nth-child(3) { font-size: 0.6em; animation-duration: 14s; left: 30%; animation-delay: -4s; }
.snowflake:nth-child(4) { font-size: 1.2em; animation-duration: 11s; left: 40%; animation-delay: -1s; }
.snowflake:nth-child(5) { font-size: 0.9em; animation-duration: 13s; left: 50%; animation-delay: -3s; }
.snowflake:nth-child(6) { font-size: 1.1em; animation-duration: 15s; left: 60%; animation-delay: -5s; }
.snowflake:nth-child(7) { font-size: 0.7em; animation-duration: 9s; left: 70%; animation-delay: -2s; }
.snowflake:nth-child(8) { font-size: 1em; animation-duration: 12s; left: 80%; animation-delay: -4s; }
.snowflake:nth-child(9) { font-size: 0.8em; animation-duration: 13s; left: 90%; animation-delay: -1s; }
.snowflake:nth-child(10) { font-size: 1.1em; animation-duration: 11s; left: 5%; animation-delay: -3s; }
.snowflake:nth-child(11) { font-size: 0.9em; animation-duration: 14s; left: 15%; animation-delay: -5s; }
.snowflake:nth-child(12) { font-size: 1em; animation-duration: 10s; left: 25%; animation-delay: -2s; }
.snowflake:nth-child(13) { font-size: 0.7em; animation-duration: 12s; left: 35%; animation-delay: -4s; }
.snowflake:nth-child(14) { font-size: 1.2em; animation-duration: 13s; left: 45%; animation-delay: -1s; }
.snowflake:nth-child(15) { font-size: 0.8em; animation-duration: 11s; left: 55%; animation-delay: -3s; }
.snowflake:nth-child(16) { font-size: 1em; animation-duration: 15s; left: 65%; animation-delay: -5s; }
.snowflake:nth-child(17) { font-size: 0.9em; animation-duration: 10s; left: 75%; animation-delay: -2s; }
.snowflake:nth-child(18) { font-size: 1.1em; animation-duration: 12s; left: 85%; animation-delay: -4s; }
.snowflake:nth-child(19) { font-size: 0.6em; animation-duration: 14s; left: 95%; animation-delay: -1s; }
.snowflake:nth-child(20) { font-size: 1em; animation-duration: 11s; left: 3%; animation-delay: -3s; }
.snowflake:nth-child(21) { font-size: 0.8em; animation-duration: 13s; left: 7%; animation-delay: -5s; }
.snowflake:nth-child(22) { font-size: 1.2em; animation-duration: 9s; left: 13%; animation-delay: -2s; }
.snowflake:nth-child(23) { font-size: 0.7em; animation-duration: 12s; left: 17%; animation-delay: -4s; }
.snowflake:nth-child(24) { font-size: 1em; animation-duration: 14s; left: 23%; animation-delay: -1s; }
.snowflake:nth-child(25) { font-size: 0.9em; animation-duration: 10s; left: 27%; animation-delay: -3s; }
.snowflake:nth-child(26) { font-size: 1.1em; animation-duration: 13s; left: 33%; animation-delay: -5s; }
.snowflake:nth-child(27) { font-size: 0.8em; animation-duration: 11s; left: 37%; animation-delay: -2s; }
.snowflake:nth-child(28) { font-size: 1em; animation-duration: 15s; left: 43%; animation-delay: -4s; }
.snowflake:nth-child(29) { font-size: 0.6em; animation-duration: 12s; left: 47%; animation-delay: -1s; }
.snowflake:nth-child(30) { font-size: 1.2em; animation-duration: 10s; left: 53%; animation-delay: -3s; }

.feed-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.feed-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.feed-empty-state {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    padding: var(--space-12) var(--space-4);
}

/* Feed Card */
.feed-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s var(--ease-stripe);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feed-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Feed Card Image */
.feed-card-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    background: var(--surface);
}

.feed-card-image-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--surface);
}

/* Feed Card Content */
.feed-card-content {
    padding: var(--space-6);
}

.feed-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-3) 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.feed-card-message {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 var(--space-4) 0;
    white-space: pre-line;
    word-wrap: break-word;
}

.feed-card-message strong {
    font-weight: 600;
    color: var(--text-primary);
}

.feed-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
}

.feed-card-time {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.feed-card-time-relative {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
}

.feed-card-time-absolute {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
    opacity: 0.7;
}

/* Simple Banner Style (for non-broadcast updates) */
.feed-banner {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: var(--space-4);
    transition: all 0.2s var(--ease-stripe);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feed-banner:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.feed-banner-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-2) 0;
}

.feed-banner-message {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 var(--space-2) 0;
}

.feed-banner-date {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* =====================================================
FOOTER - STRIPE ULTRACLEAN STYLE
===================================================== */
#footerCredit {
    padding: var(--space-4) var(--space-4) var(--space-20);
    text-align: center;
}

#footerCredit p {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin: 0;
}

/* Hide video backgrounds */
.thanksgiving-bg-video {
    display: none;
}

/* Hide fancy backgrounds */
.grid-background {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
body {
    padding-bottom: 80px;
}
            
.categories-fab {
    display: flex;
}
            
#categoryFilters {
    display: none;
}
}

@media (min-width: 769px) {
.categories-fab,
.categories-drawer {
    display: none !important;
}
}